provider Organizations GET
/api/0/organizations/{organization_id_or_slug}/project-keys/ @utdk/sentry
/api/0/organizations/{organization_id_or_slug}/project-keys/ List an Organization's Client Keys
Return a list of client keys (DSNs) for all projects in an organization.
This paginated endpoint lists client keys across all projects in an organization. Each key includes the project ID
to identify which project it belongs to.
Query Parameters:
- team: Filter by team slug or ID to get keys only for that team's projects
- status: Filter by 'active' or 'inactive' to get keys with specific status
- organization_id_or_slug path required
- The ID or slug of the organization the resource belongs to.
- string
- cursor query
- A pointer to the last object fetched and its sort order; used to retrieve the next or previous results.
- string
- team query
- Filter keys by team slug or ID. If provided, only keys for projects belonging to this team will be returned.
- string
- status query
- Filter keys by status. Options are 'active' or 'inactive'. * `active` * `inactive`
- enum: active, inactive
Try it
Authentication
Configure credentials for API Reference
Gateway
The gateway proxies requests and injects credentials server-side. Configure credentials above, then enter your gateway URL.
Saved automatically to browser storage.
Code snippet
Updates live as you fill in the form above.
TypeScript
import sentry from '@utdk/sentry';
await sentry.listAnOrganizationSClientKeys()